summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/fragment_ingame_menu.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/res/layout/fragment_ingame_menu.xml')
-rw-r--r--src/android/app/src/main/res/layout/fragment_ingame_menu.xml56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_ingame_menu.xml b/src/android/app/src/main/res/layout/fragment_ingame_menu.xml
new file mode 100644
index 000000000..ce618ef7b
--- /dev/null
+++ b/src/android/app/src/main/res/layout/fragment_ingame_menu.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?attr/colorSurface"
+ android:elevation="3dp"
+ tools:layout_width="250dp">
+
+ <TextView
+ android:id="@+id/text_game_title"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginHorizontal="32dp"
+ android:layout_marginVertical="24dp"
+ android:ellipsize="end"
+ android:letterSpacing="0"
+ android:maxLines="@integer/game_title_lines"
+ android:textSize="20sp"
+ android:textColor="?attr/colorOnSurface"
+ tools:text="The Legend of Zelda: Breath of the Wild" />
+
+ <com.google.android.material.divider.MaterialDivider
+ android:id="@+id/divider"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <ScrollView
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:scrollbarSize="4dp"
+ android:fadeScrollbars="false">
+
+ <LinearLayout
+ android:id="@+id/layout_options"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" />
+
+ </ScrollView>
+
+ <com.google.android.material.divider.MaterialDivider
+ android:id="@+id/divider_2"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <Button
+ android:id="@+id/menu_exit"
+ style="@style/InGameMenuOption"
+ android:layout_marginTop="@dimen/spacing_large"
+ android:text="@string/emulation_exit" />
+
+</LinearLayout> \ No newline at end of file